home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Amiga_Misc / Docs / os_module < prev    next >
Text File  |  1998-11-10  |  949b  |  43 lines

  1.  
  2.  
  3.                                  OS MODULE
  4.  
  5.                      Irmen de Jong - irmen@bigfoot.com
  6.                                 1 feb. 1998
  7.  
  8.  
  9. This document describes the module `os'.  This is the portable interface to
  10. the `amiga' module (`posix' module on Unix systems).  You should always use
  11. this module instead of the `amiga' module.
  12.  
  13. This module includes everything that the `amiga' module exports.
  14.  
  15.  
  16. Additional functions in `os' module:
  17.  
  18.     execl, execle, execlp, execlpe, execvp, execvpe
  19.  
  20.     All of these raise an exception because they are not implemented.
  21.  
  22.   DATA MEMBERS: (Items marked (*): see below, ABOUT ENVIRONMENT)
  23.  
  24.     curdir    : ''
  25.     defpath    : 'C:'
  26.     name    : 'amiga'
  27.     pardir    : '/'
  28.     pathsep    : ';'
  29.     sep        : '/'
  30.     altsep    : None
  31.  
  32.  
  33.   SUB MODULES:
  34.  
  35.     path    (=amigapath module. Always use os.path instead of amigapath)
  36.  
  37.  
  38. For documentation, see regular docs on the os module.
  39.  
  40.  
  41. SEE ALSO: amiga module, amigapath module
  42.  
  43.